PowerTools CalendarGrid for Windows Forms 1.0J
ドロップダウンカレンダー (CalendarGcDateTimeCellType)

概要

ドロップダウンカレンダーは、視覚的な日付入力を可能にする入力補助機能です。

CalendarGcDateTimeCellTypeでは、DropDownプロパティが参照するDropDownオブジェクトを使用してドロップダウン時の動作を設定することができます。



ドロップダウンカレンダーを表示する

ドロップダウンカレンダーを表示するには、次の4つの方法があります。
Imports InputManCell = GrapeCity.Win.CalendarGrid.InputMan

Dim today As DateTime = DateTime.Today

Dim GcDateTimeCellType As New InputManCell.CalendarGcDateTimeCellType()
' ドロップダウンボタンを追加
GcDateTimeCellType.SideButtons.Add(New InputManCell.DropDownButton())

GcCalendarGrid1.Content(today).Rows(1).Cells(0).CellType = GcDateTimeCellType
GcCalendarGrid1.ScrollIntoView(today)
using InputManCell = GrapeCity.Win.CalendarGrid.InputMan;

var today = DateTime.Today;

var gcDateTimeCellType = new InputManCell.CalendarGcDateTimeCellType();
// ドロップダウンボタンを追加
gcDateTimeCellType.SideButtons.Add(new InputManCell.DropDownButton());

gcCalendarGrid1.Content[today].Rows[1].Cells[0].CellType = gcDateTimeCellType;
gcCalendarGrid1.ScrollIntoView(today);


ドロップダウンカレンダーのイベントの利用

InputManCellでサポートされません。


ドロップダウン動作の設定

ドロップダウンの動作を設定するDropDownオブジェクトは、次のようなプロパティを設定できます。


参照

 

 


© 2014 GrapeCity inc. All rights reserved.